@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: "Poppins", sans-serif;
}


.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}


/* //........top text ........// */

:root {
    /* //....... Color ........// */
    --primary-color: #ff3c78;
    --light-black: rgba(0, 0, 0, 0.89);
    --black: #000;
    --white: #fff;
    --grey: #aaa;
}


/* Default styles for all screens */
.top-txt {
    background-color: var(--black);
}


.head {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.945);
    padding: 10px 0;
    font-size: 14px;
}


.head a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.945);
    margin: 0 10px;
}

/* Logo size for all screens */
.logo img {
    height: 50px; /* Base size */
    width: auto;
    transition: all 0.3s ease;
}


/* Hide top-txt on mobile only (under 768px) */
@media (max-width: 767px) {
    .top-txt {
        display: none;
    }
    
    /* Keep original mobile logo size */
    .navbar .logo img {
        max-height: 30px; /* Your original mobile size */
    }
}

/* Tablet styles (768px-991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .logo img {
        max-height: 35px;
    }
}

/* Desktop styles (992px and up) */
@media (min-width: 992px) {
    .logo img {
        max-height: 40px;
    }
}
/* //........ Navbar ........// */

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.navbar {
    box-shadow: 0 5px 4px rgb(146 161 176 / 15%);
    position: sticky;
    top: 0;
    background: var(--white);
    color: var(--black);
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.navbar img {
    margin-left: 3rem;
}

.menu-items {
    order: 2;
    display: flex;
    margin-right: 3rem;
}

.menu-items li {
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.2rem;
}

.navbar-container ul a {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    position: relative;
}

.navbar-container ul a:after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

.navbar-container ul a:hover:after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar {
        opacity: 0.95;
         padding-top: 0; /* Remove any default padding */
        margin-top: 0; 
    }
    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }
    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }
    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }
    .navbar-container .hamburger-lines {
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }
    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }
    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }
    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }
    .navbar .menu-items {
        padding-top: 100px;
        background: #fff;
        height: 100vh;
        max-width: 100%;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
         margin-left: -40px;
        padding-left: 40px; 
        text-align: center;
        transition: transform 0.5s ease-in-out;
        /* box-shadow: 5px 0px 10px 0px #aaa; */
        overflow: scroll;
    }
    .navbar .menu-items li {
        margin-bottom: 2rem;
        font-size: 1.1rem;
        font-weight: 500;
    }
    .menu-items li,
    .navbar img {
        margin: 0;
    }
    .navbar .menu-items li:nth-child(1) {
        margin-top: 1.5rem;
    }
    .navbar-container .logo img {
        position: absolute;
        top: 10px;
        right: 15px;
        margin-top: 8px;
    }
    .navbar-container input[type="checkbox"]:checked~.menu-items {
        transform: translateX(0);
    }
    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(45deg);
    }
    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }
    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-45deg);
    }
    .navbar-container input[type="checkbox"]:checked~.home_page img {
        display: none;
        background: #fff;
    }
}

@media (max-width: 500px) {
    .navbar{
          top: 0;
    }
    .navbar-container input[type="checkbox"]:checked~.navbar-container img {
        display: none;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 500px; /* Adjust as needed */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    max-width: 600px;
    color:rgb(60, 60, 60);
    padding: 20px;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-tagline {
    color: #ff3c78;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
}

.hero-tagline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ff3c78;
}

.hero-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color:rgb(90, 90, 90);
}

.hero-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-button:hover {
    background-color: #ff3c78;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-button a {
    color: inherit;
    text-decoration: none;
}

.bx-right-arrow-alt {
    font-size: 1.3rem;
    padding-left: 8px;
    transition: transform 0.3s ease;
}

.hero-button:hover .bx-right-arrow-alt {
    transform: translateX(3px);
}

.hero-social-icons {
    display: flex;
    gap: 15px;
}

.hero-social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-social-icons a:hover {
    color: #ff3c78;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }
    
    .hero-tagline::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-image {
        min-height: 400px;
    }
    
    .hero-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-image {
        min-height: 500px;
        object-position: center;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-button {
        padding: 10px 20px;
    }
}


 
        /* Services section */
        .services {
            padding: 100px 20px;
            background: rgb(231, 231, 231);
        }
        
        .section-title {
            
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: rgb(0, 0, 0);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--accent);
            bottom: -10px;
            left: 25%;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #000000;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-card {
            background: rgb(18, 18, 18);
            box-shadow: 0 50px 40px rgb(0, 0, 0);;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 4 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .service-video-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .service-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .service-content p {
            color: #a7a7a7;
            margin-bottom: 20px;
        }
        
        .service-content a {
            color: rgb(61, 65, 255);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        .service-content a:hover{
            color: #3498db;
        }
        
        .service-content a i {
            
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .service-content a:hover i {
            color: #3498db;
            transform: translateX(5px);
        }
        
        /* Live News Section */
        .live-news {
            color: white;
            padding: 100px 20px;
            background:rgb(18, 18, 18);
        }
        
        .live-news .section-title h2{
            color: #00002;
        }
        
        .live-news .section-title p{
            color:  #00009;
        }
        
        .live-news{
             background: rgb(231, 231, 231);
            
        }



        .news-container {
            color: white;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
           
        }
        
        .latest-news {
            color:rgb(18, 18, 18) ;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .news-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 25px white;
             background: rgb(18, 18, 18);
        }

        .news-card:hover{
             transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 254, 254, 0.2);
        }
        
        .news-card video {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .news-content {
            padding: 20px;
            background: rgb(18, 18, 18);
        }
        
        .news-content .meta {
            display: flex;
            justify-content: space-between;
            color:rgb(18, 18, 18);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .news-content h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .news-content p {
            color: antiquewhite;
            color: #adadad;
            margin-bottom: 15px;
        }
        
        .news-content a {
             color: rgb(130, 95, 255);
            text-decoration: none;
            font-weight: 900
        }
        
        .news-content a:hover{
              color: white;
            text-decoration: none;
            font-weight: 600

        }


        .upcoming-events {
            background: rgb(18, 18, 18);
            padding: 30px;
            border-radius: 10px;
            height: fit-content;
        }
        
        .upcoming-events h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: white;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
        }
        
        .event-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #ddd;
            
        }
        
        .event-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .event-date {
            background: var(--primary);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            display: inline-block;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .event-item h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #ddd;
        }
        
        .event-item p {
            color: #9e9e9e;
            font-size: 0.9rem;
        }

        .event-item a{
            color: rgb(130, 95, 255);
            text-decoration: none;
            font-weight: 900
        
            
        }


        .event-item a:hover{
             color: white;
            text-decoration: none;
            font-weight: 600

        }
        
   

        
        /* Testimonials */
        .testimonials {
            padding: 100px 20px;
            background: rgb(0, 0, 0);
        }
        .testimonials .section-title h2{
            color: white;
        }
         .testimonials .section-title p{
            color: white;
         }
        
        .testimonial-slider {
            max-width: 1000px;
            margin: 50px auto 0;
        }
        
        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 0 20px;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 5rem;
            color: var(--accent);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
            color: #555;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .author-info h4 {
            margin: 0;
            color: var(--secondary);
        }
        
        .author-info p {
            margin: 5px 0 0;
            color: #666;
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta {
            padding: 100px 20px;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
        }
     .cta .btn{
     background-color: #ffff;
    color: #0009;
    border: none;
    padding: 12px 28px;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 30px;
    text-decoration:none;
}

.cta .btn:hover {
    background-color: #ff3c78;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cta .btn a {
    color: inherit;
    text-decoration: none;
}
        
        
        
        
        .clients-section {
            padding: 4rem 2rem;
            background: white;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            text-align: center;
            max-width: 1400px;
            margin: auto auto;
            align-items:center;
            width:100%;
            
        }

        .clients-section h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #1e3a8a;
            margin-bottom: 1rem;
            text-align: center;
            
        }

        .clients-section p {
            font-size: 1.1rem;
            color: #1e3a8a;
            opacity: 0.8;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 2rem;
            justify-items: center;
            align-items: center;
        }

        .client-logo {
            max-width: 150px;
            height: auto;
            filter: grayscale(20%);
            transition: transform 0.3s ease, filter 0.3s ease;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 1rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .client-logo:hover {
            transform: scale(1.1);
            filter: grayscale(0%);
        }

        @media (max-width: 768px) {
            .clients-section {
                padding: 3rem 1.5rem;
            }

            .clients-section h2 {
                font-size: 2rem;
            }

            .clients-section p {
                font-size: 1rem;
            }

            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 1.5rem;
            }

            .client-logo {
                max-width: 120px;
            }
        }
        
        
        
        /* Footer */
        footer {
            background: white;
            color: white;
            padding: 80px 20px 30px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-col h3 {
            color: #000000;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--accent);
            bottom: 0;
            left: 0;
        }
        
        .footer-col p {
            color: #423f3f;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #5a5858;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }
        
        .footer-links a:hover {
            color: blue;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: rgb(0, 0, 0);
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 50px;
            margin-top: 50px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            color: #000000;
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .news-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 20px;
            }
            
            nav ul li {
                margin-left: 15px;
                margin-right: 15px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .btn {
                display: block;
                margin-bottom: 15px;
                margin-left: 0;
            }
        }
         @media (max-width: 1024px) {
              .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            animation: backgroundZoom 20s infinite alternate;
        }
        
        @keyframes backgroundZoom {
            0% {
                background-size: 190%;
            }
            100% {
                background-size: 290%;
            }
        }

         }

           @media (max-width: 768px) {
              .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            animation: backgroundZoom 20s infinite alternate;
        }
        
        @keyframes backgroundZoom {
            0% {
                background-size: 290%;
            }
            100% {
                background-size: 390%;
            }
        }

         }

          @media (max-width: 414px) {
              .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            animation: backgroundZoom 20s infinite alternate;
        }
        
        @keyframes backgroundZoom {
            0% {
                background-size: 340%;
            }
            100% {
                background-size: 450%;
            }
        }

         }

           @media (max-width: 360px) {
              .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            animation: backgroundZoom 20s infinite alternate;
        }
        
        @keyframes backgroundZoom {
            0% {
                background-size: 480%;
            }
            100% {
                background-size: 670%;
            }
        }

         }

          @media (max-width: 320px) {
              .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
            animation: backgroundZoom 20s infinite alternate;
        }
        
        @keyframes backgroundZoom {
            0% {
                background-size: 590%;
            }
            100% {
                background-size: 750%;
            }
        }

         }
